[INSERT_UPDATE_SUMMARY]
Webflow offers four site plans starting at $14/month. The pricing structure is relatively straightforward, though there are some important nuances to consider before choosing a plan.
The plans are broken down as follows:
To check your current plan, navigate to Settings > Billing in your Webflow dashboard. You can also use the Webflow API to query it programmatically.
Tip: If you're on an annual plan, you can save up to 30% compared to monthly billing.
GET https://api.webflow.com/v2/sites/{site_id}
Authorization: Bearer YOUR_API_TOKEN
As of February 2026, Webflow has restructured its pricing into five site plans with significant changes to bandwidth limits and CMS item caps. The new structure is more granular but offers substantially better value at each tier.
The 2026 pricing tiers are:
webflow.io subdomain, 1GB bandwidthImportant: Annual billing now saves 22% (previously 30%). Enterprise plans require contacting sales for a custom quote.
You can query your current plan programmatically using the Webflow v2 API:
// Fetch current site plan via Webflow API
const response = await fetch(
'https://api.webflow.com/v2/sites/{site_id}',
{
headers: {
'Authorization': 'Bearer YOUR_TOKEN',
'accept': 'application/json'
}
}
);
const site = await response.json();
console.log(`Plan: ${site.plan.name}`);
console.log(`Bandwidth: ${site.plan.bandwidth}`);For the full breakdown, visit the updated pricing page. Note that legacy plans have been fully discontinued as of January 2026.